home *** CD-ROM | disk | FTP | other *** search
/ SGI Desktop Special Edition 1.1 / SGI Desktop Special Edition 1.1.iso / dist / SoftWindows2.idb / usr / lib / SoftWindows2 / bin / scripts / nupwarn.sh.z / nupwarn.sh
Encoding:
Linux/UNIX/POSIX Shell Script  |  1995-11-13  |  334 b   |  8 lines

  1. #!/bin/sh
  2. XCONFIRM=/usr/bin/X11/xconfirm
  3. case `$XCONFIRM -c -B "Yes" -b "No" -header "SoftWindows Update" -t "This hard disk container file (C:)" -t "will not be updated. This can" -t "cause severe problems including" -t "loss of data." -t "" -t "Upgrade now?" -icon question -geometry "320x190"`
  4. in
  5.     Yes) exit 2;;
  6.     No) exit 1;;
  7. esac
  8.